home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / tex / vf150.zip / VF150.DOC < prev   
Text File  |  1985-08-24  |  5KB  |  104 lines

  1.             VFILER for MSDOS  
  2.                by Mike Nice
  3.                [73565,565]
  4.                  08/84
  5.              VF150 for Z150/IBM PC
  6.                      01/85
  7.  
  8.     This is a translation of Rich Conn's ZCPR2 utility VFILER ver 1.7.
  9. Please see SIG/M vol 145 for the origional release and author credits.  
  10. Translated to CP/M-86 by    H. M. Van Tassell
  11.  
  12.     Modifications to VFILER creating VF150 for the Zenith Z150 and
  13. IBM PC by Rick Schaeffer [70120,174].
  14.  
  15. This program may NOT be sold for profits above distribution costs.
  16.  
  17.     VF150 is a screen-oriented file manipulation utility which runs
  18. under MSDOS 1 or 2.  Following in the footsteps of SWEEP, CLEAN, and DISK,
  19. VF150 performs the same fundamental functions, but adds screen-oriented
  20. displays and manipulation to it, giving a more user-friendly interface.
  21.  
  22.     When VF150 is invoked, it displays a screen (up to 64) files to the
  23. user with an "cursor" in inverse video pointing to a file.  The user may
  24. use the Word Star cursor movement keys (^E for up, ^X for down, ^D for
  25. right, ^S for left) to move the cursor to point to a desired file.  Typing
  26. V will view the file on the CRT, P will print it on the printer, C will
  27. copy it, D will delete it, etc.  ESCape and ^C may be used to exit from
  28. mass operations.  See the command summary built into VF150.
  29.  
  30.  
  31.     Special DOS 2 features:
  32. Although support for DOS 2 has been added, DOS 1 is still fully supported.
  33. The currently logged directory is displayed, and the Volume name if
  34. present is also displayed.  When (L)ogging in a new directory, or 
  35. (C)opying to another directory, full pathnames are supported.  If the
  36. last name contains a wildcard, it is assumed to be the filespec you
  37. wish to work with.  The file may not be copied under a different filename.
  38. See examples below.  
  39.      The e(X)ecute and (E)nter commands will allow you to call another
  40. program and give you the option of returning to VF150 afterwards.  If
  41. this is done, an approximately 12 to 15 K of additional memory will be
  42. consumed to keep VF150 in memory.  Upon return, the origional filespec
  43. will be used to log in the files.  This option should not be used to
  44. run programs which terminate and remain resident (such as PSC.COM).
  45.  
  46.     The downloaded file should be named VF150.COM.  When invoking it,
  47. the drive and filespec you wish to work with may be specified on the 
  48. command line.  The colon on the drive name is optional if it is the only
  49. thing on the command line
  50.   Examples:  VF150 B:
  51.                 VF150 B
  52.          VF150 B:*.BAS
  53.              Login DIR: E:*.ASM
  54.              VF150 *.DOC
  55.          VF150
  56. A '/W' switch may be also specified on the command line to cause VF150 to 
  57. pause before continuing (to allow for a disk swap).  This should be the 
  58. last part of the command line.
  59.   Examples:  VF150 E /W
  60.          VF150 C:*.A?M/W
  61.          VF150 /W
  62.  
  63.  Pathname examples: (DOS 2 only)
  64.              VF150 A:\BIN\MODEM\DOWNLOAD.JNK\*.?Q?
  65. (logs in subdirectory DOWNLOAD.JNK on drive A:, all files meeting *.?q? spec.)
  66.  
  67.              VF150 ..
  68. (logs in all files in parent directory on current disk)
  69.  
  70.              Login DIR: UTILS.ASM
  71. (logs in subdirectory UTILS.ASM on current disk, all files)
  72.  
  73.          Copy to DIR: B:P
  74. (copies to subdirectory P on disk B:.  Note that a drive letter and colon
  75. are required when using single letter subdirectories.  This is the tradeoff
  76. for not having to specify the colon when specifying only the drive letter.)
  77.  
  78.          Copy to DIR: \
  79. (copies to root directory on current disk.  Must not be current directory)
  80.  
  81. In theory 64 character pathnames are allowed.  However, due to limitations on
  82. the screen layout for the command prompt, only about 42 characters are
  83. allowed in practice.  Also, tagging subdirectories for later operations
  84. is not allowed.
  85.  
  86.  
  87.     VF150 comes installed for the Zenith Z150 and/or IBM-PC.  When
  88. initially run, it determines whether it is running on a color or mono-
  89. chrome card.  If running on the color card, VF150 will set up for color
  90. use.  There are 5 in the program which contain the colors used for the
  91. various VF150 functions.  These locations may be CAREFULLY patched if
  92. the colors chosen are not suitable.  
  93.  
  94.       Address   Description
  95.       -------   -----------------------------------------------------------
  96.     6FE    Clear-screen color.  Normally 07H (white on black).
  97.     6FF    Standard character color.  Normally 03H (Cyan on black).
  98.     700    Cursor color.  Normally 34H (Red on Cyan).
  99.     701    Tagged file color.  Normally 0CH (Bright red on black).
  100.     702    Status line color.  Normally 06H (Brown on black).
  101.  
  102.     In addition, VF150 supports the IBM keypad in that the keypad
  103. arrow keys, and page up and page down work as you might expect.
  104.